Kendo UI Mobile base

HTML

<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.mobile.all.min.css">
<script src="http://cdn.kendostatic.com/2012.2.710/js/kendo.all.min.js"></script>
<input type="checkbox" id="foo" />
<input type="button" value="check" id="bar" />

JavaScript

$("#foo").change(function() {
    alert(1);
});
$("#bar").click(function() {
    $("#foo").attr("checked", "checked");
});